
.card {
    max-width: 1200px;
    height: 500px;
    background: #e0e0e0;
    border-radius: 50px;
    box-shadow: 10px 10px 60px #bebebe, -10px -10px 60px #ffffff;
    margin: 20px auto;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 30px;
    align-items: center;
}

.info {
    flex: 0 0 35%;
    background: #d6d6d6;
    height: 100%;
    border-radius: 30px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
}

.info-text {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

.back-btn {
    background: #5ec84b;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 15px;
    cursor: pointer;
   
}
.photo {
    flex: 0 0 60%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo img {
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 30px;
}

@media (max-width: 992px) {
    .card {
        height: auto;
        padding: 20px;
    }

    .card-inner {
        flex-direction: column-reverse;
        height: auto;
        gap: 20px;
    }

    .info {
        width: 100%;
        flex: unset;
        height: auto;
        text-align: center;
        padding: 20px;
    }

    .info-title {
        font-size: 22px;
    }

    .info-text {
        font-size: 15px;
        line-height: 1.9;
        text-align: justify;
    }

    .photo {
        width: 100%;
        flex: unset;
        height: 300px;
    }

    .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


@media (max-width: 600px) {
    .info-title {
        font-size: 20px;
    }

    .info-text {
        font-size: 14px;
        line-height: 2;
        text-align: justify;
    }

    .back-btn {
        font-size: 14px;
        padding: 8px 14px;
    }

    .photo {
        height: 250px;
    }
    .back-btn2 {
        font-size: 14px;
        padding: 8px 14px;
    }
}

.back-btn2 {
    background: #c22174;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 5px;
   
}